home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / bytesc88.arc / SIGN.C < prev    next >
Text File  |  1987-10-04  |  256b  |  9 lines

  1. /*
  2. ** sign -- return -1, 0, +1 depending on the sign of nbr
  3. */
  4. sign(nbr)  int nbr;  {
  5.   if(nbr>0) return 1;
  6.   if(nbr==0) return 0;
  7.   return -1;
  8.   }
  9.